+2005-12-07 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtktoolbutton.c (clone_image_menu_size): Fix a
+ variable name clash. (#323475, Ross Burton)
+
2005-12-07 Ross Burton <ross@burtonini.com>
* docs/reference/gtk/tmpl/gtkenums.sgml:
2005-12-07 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtktoolbutton.c (clone_image_menu_size): Fix a
+ variable name clash. (#323475, Ross Burton)
+
* gtk/gtktreeview.c (gtk_tree_view_key_press): Use the correct
window when synthesizing the key event. (#323077,
Sadrul Habib Chowdhury)
+2005-12-07 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtktoolbutton.c (clone_image_menu_size): Fix a
+ variable name clash. (#323475, Ross Burton)
+
2005-12-07 Ross Burton <ross@burtonini.com>
* docs/reference/gtk/tmpl/gtkenums.sgml:
2005-12-07 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtktoolbutton.c (clone_image_menu_size): Fix a
+ variable name clash. (#323475, Ross Burton)
+
* gtk/gtktreeview.c (gtk_tree_view_key_press): Use the correct
window when synthesizing the key event. (#323077,
Sadrul Habib Chowdhury)
&width, &height))
{
GdkPixbuf *src_pixbuf, *dest_pixbuf;
- GtkWidget *image;
+ GtkWidget *cloned_image;
src_pixbuf = gtk_image_get_pixbuf (image);
dest_pixbuf = gdk_pixbuf_scale_simple (src_pixbuf, width, height,
GDK_INTERP_BILINEAR);
- image = gtk_image_new_from_pixbuf (dest_pixbuf);
+ cloned_image = gtk_image_new_from_pixbuf (dest_pixbuf);
g_object_unref (dest_pixbuf);
- return image;
+ return cloned_image;
}
}